home *** CD-ROM | disk | FTP | other *** search
- on(release){
- if(_root.thumbnails._currentframe == 1)
- {
- _root.page = _root.page + 1;
- if(_root.page > _root.images.length)
- {
- _root.page -= _root.images.length;
- }
- _root.thumbnails.play();
- i = 0;
- while(i < 4)
- {
- if(_root.page + i < _root.images.length)
- {
- _root["desc" + (i + 1)] = _root.images[_root.page + i].desc;
- }
- else
- {
- _root["desc" + (i + 1)] = _root.images[_root.page + i - _root.images.length].desc;
- }
- i++;
- }
- }
- }
-